home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / trillian_installed.nasl < prev    next >
Text File  |  2005-03-31  |  1KB  |  51 lines

  1. #
  2. # This script was written by Xue Yong Zhi <xueyong@udel.edu>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(11428);
  10.  script_bugtraq_id(5677, 5733, 5755, 5765, 5769, 5775, 5776, 5777, 5783);
  11.  
  12.  # no cve_id
  13.  
  14.  script_version("$Revision: 1.6 $");
  15.  
  16.  name["english"] = "Trillian is installed";
  17.  
  18.  script_name(english:name["english"]);
  19.  
  20.  desc["english"] = "
  21. The remote host is using Trillian - a p2p software, 
  22. which may not be suitable for a business environment. 
  23.  
  24. Solution : Uninstall this software
  25. Risk factor : Low";
  26.  
  27.  
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "Determines if Trillian is installed";
  32.  
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2003 Xue Yong Zhi");
  38.  family["english"] = "Peer-To-Peer File Sharing";
  39.  script_family(english:family["english"]);
  40.  
  41.  script_dependencies("smb_hotfixes.nasl");
  42.  script_require_keys("SMB/Registry/Enumerated");
  43.  exit(0);
  44. }
  45.  
  46.  
  47.  
  48. rootfile = get_kb_item("SMB/Registry/HKLM/SOFTWARE/Microsoft/Windows/CurrentVersion/Uninstall/Trillian/DisplayName");
  49.  
  50. if(rootfile) security_note(get_kb_item("SMB/transport")); 
  51.